home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 140
/
(Vol 140) Sep 19 2011.iso
/
Games
/
world-wars.swf
/
scripts
/
__Packages
/
classes
/
ww_interface
/
Waiter.as
< prev
Wrap
Text File
|
2011-09-19
|
690b
|
33 lines
class classes.ww_interface.Waiter extends MovieClip
{
var countdown = 2;
var cdw = 0;
function Waiter()
{
super();
this._visible = false;
this.status = "ready_off";
}
function show()
{
this.status = "progress";
this._visible = true;
this.cdw = 0;
this.onEnterFrame = mx.utils.Delegate.create(this,this.makeBig);
}
function hide()
{
this._visible = false;
this.status = "ready_off";
}
function makeBig()
{
this.cdw = this.cdw + 1;
if(this.cdw > this.countdown)
{
this.status = "ready_on";
delete this.onEnterFrame;
}
}
}